May 11, 2019 APEX, Oracle 4 Comments

With apex 5 on-wards, we have Dialog Closed event in dynamic action. This can be used in many places such as, you want to refresh your parent region when a record has been modified from Dialog Page.

But, when your dialog page URL is built using APEX_UTIL.PREPARE_URL, and you want to call Dialog Closed event? This will by default not detected with any of your dialog close selector.

So, purpose of this blog is to introduce you “p_triggering_element” parameter in APEX_UTIL.PREPARE_URL function. You have to set value of this parameter something like “apex.jQuery(‘#<your_parent_region_static_id>’)”.

This will now detect On Dialog Close event with your parent region as a Selection Type in dynamic action configuration.

Hope this helps!

Regards,
Jaydip Bosamiya
jbosamiya@gmail.com

Written by Jaydip Bosamiya